bitkeeper revision 1.159 (3e803a35-Yk3EywTimePoA1HCtTIgg)
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>
Tue, 25 Mar 2003 11:15:01 +0000 (11:15 +0000)
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>
Tue, 25 Mar 2003 11:15:01 +0000 (11:15 +0000)
TODO:
  Updated TODO to suggest a module system for Xen.

xen/TODO

index 41f0fca7d5fb2288347e6ffd16237122f055bc82..a74b578db139024be769e8fdb0cb04402cc0eabf 100644 (file)
--- a/xen/TODO
+++ b/xen/TODO
@@ -16,7 +16,7 @@ spreading them across processor packages.
 
 What we need to do is port code from Linux which stores information on
 relationships between processors in the system (eg. which ones are
-siblings in teh same package). We then use this to balance domains
+siblings in the same package). We then use this to balance domains
 across packages, and across virtual processors within a package.
 
 2. PROPER DESTRUCTION OF DOMAINS
@@ -78,7 +78,19 @@ Xen's timebase. Once this is done, we can have a timebase per CPU and
 not worry about relative drift (since they'll all get sync'ed
 periodically by ntp).
 
-8. NEW DESIGN FEATURES
+8. MODULE SUPPORT FOR XEN
+-------------------------
+Network and blkdev drivers are bloating Xen. At some point we want to
+build drivers as modules, stick them in a cheesy ramfs, then relocate
+them one by one at boot time. If a driver duccessfully probes hardware
+we keep it, otherwise we blow it away. Alternative is to have a
+central PCI ID to driver name repository. We then use that to decide
+which drivers to load.
+
+Most of the hard stuff (relocating and the like) is done for us by
+Linux's module system.
+
+9. NEW DESIGN FEATURES
 ----------------------
 This includes the last-chance page cache, and the unified buffer cache.